home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SCRIPT.PAK / CREDITS.SPP < prev    next >
Text File  |  1997-05-06  |  1KB  |  59 lines

  1. //----------------------------------------------------------------------------
  2. // cScript
  3. // (C) Copyright 1987, 1997 by Borland International, All Rights Reserved
  4. //
  5. // CREDITS.SPP
  6. //    Contains list of contributors to be displayed in HelpAbout Box when
  7. //    Alt-i is pressed.
  8. //
  9. // $Revision:   1.5  $
  10. //
  11. //----------------------------------------------------------------------------
  12.  
  13. //  We are so configurable that even our credits are configurable!
  14. declare array contributors[] = {
  15.    "Amber Hein",
  16.    "Brian Myers",
  17.    "Bruneau Babet",
  18.    "Chris Hesik",
  19.    "Conrad Herrmann",
  20.    "Daniel Thomas",
  21.    "David Wilhelm",
  22.    "Dennis Lucey",
  23.    "Ed James-Beckham",
  24.    "Eli Boling",
  25.    "Greg Cole",
  26.    "Herbert Czymontek",
  27.    "Ian Ricksecker",
  28.    "Jason Douglas",
  29.    "Jeff Peters",
  30.    "John Wiegley",
  31.    "Jonah Perez",
  32.    "Judy Fitzgerald",
  33.    "Keimpe Bronkhorst",
  34.    "Kelly Rich",
  35.    "Lee Cantey",
  36.    "Maurice Barnum",
  37.    "Mike Weisert",
  38.    "Nancy Wood",
  39.    "Peter Sollich",
  40.    "Peter Williams",
  41.    "Regis Crelier",
  42.    "Scott Lund",
  43.    "Sharon Campbell",
  44.    "Shea Anderson",
  45.    "Terri Bartos",
  46.    "Tim Hanna",
  47.    "Tina Grubbe",
  48. };
  49.  
  50. Credits(){
  51.    declare IDEApplication ide;
  52.  
  53.    for(declare wlkr = 0; 1; wlkr++){
  54.       if(contributors[wlkr] == NULL)
  55.          break;
  56.       ide.AddToCredits(contributors[wlkr]);
  57.    }   
  58. }
  59.